home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_bas / pbc32.zip / PBC$BAS.ZIP / SSRCH.BAS < prev    next >
BASIC Source File  |  1996-04-10  |  522b  |  10 lines

  1. '   +----------------------------------------------------------------------+
  2. '   |                                                                      |
  3. '   |   PBClone  (C) Copyright 1996 Charon Software, All Rights Reserved   |
  4. '   |                                                                      |
  5. '   +----------------------------------------------------------------------+
  6.  
  7. SUB SSrch (SubSt$, MainSt$, FoundMatch%)
  8.    FoundMatch% = (INSTR(UCASE$(MainSt$), UCASE$(LTRIM$(RTRIM$(SubSt$)))) > 0)
  9. END SUB
  10.